PowerTools SPREAD for ASP.NET 8.0J
AddRange(GroupInfo[]) メソッド

コレクションに追加する GroupInfo オブジェクトの配列
GroupInfo オブジェクトの配列をコレクションに追加します。
構文
'Declaration
 
Public Overloads Overridable Sub AddRange( _
   ByVal array() As GroupInfo _
) 
public virtual void AddRange( 
   GroupInfo[] array
)

パラメータ

array
コレクションに追加する GroupInfo オブジェクトの配列
次のサンプル コードは、いくつかのグループ情報項目をコレクションに追加します。
FpSpread1.ActiveSheetView.AllowColumnMove = true;
FpSpread1.ActiveSheetView.GroupBarVisible = true;
FpSpread1.ActiveSheetView.AllowGroup = true;

FarPoint.Web.Spread.GroupInfo gi = new FarPoint.Web.Spread.GroupInfo();
gi.BackColor = System.Drawing.Color.Yellow;
FarPoint.Web.Spread.GroupInfo gi2 = new FarPoint.Web.Spread.GroupInfo();
gi2.BackColor = System.Drawing.Color.Green;
FarPoint.Web.Spread.GroupInfoCollection gic = new FarPoint.Web.Spread.GroupInfoCollection();
gic.AddRange(new FarPoint.Web.Spread.GroupInfo[] { gi, gi2 });
FpSpread1.ActiveSheetView.GroupInfos.Add(gic[0]);

FpSpread1.ActiveSheetView.AllowColumnMove = True
FpSpread1.ActiveSheetView.GroupBarVisible = True
FpSpread1.ActiveSheetView.AllowGroup = True

Dim gi As New FarPoint.Web.Spread.GroupInfo
gi.BackColor = Drawing.Color.Yellow
Dim gi2 As New FarPoint.Web.Spread.GroupInfo
gi2.BackColor = Drawing.Color.Green
Dim gic As New FarPoint.Web.Spread.GroupInfoCollection()
gic.AddRange(New FarPoint.Web.Spread.GroupInfo() {gi, gi2})
FpSpread1.ActiveSheetView.GroupInfos.Add(gic(0))
参照

GroupInfoCollection クラス
GroupInfoCollection メンバ
オーバーロード一覧

 

 


© 2003-2015, GrapeCity inc. All rights reserved.